Draw:Line(x1, y1, x2, y2, color, line_width, destination)
Draws a line.
destination parameter can either be an Image buffer or the screen.
function main() { Var:Number colorYELLOW; Konsol:RGB(255,255,0, colorYELLOW) Screen:Show() Draw:Line(50, 50, 100, 100, colorYELLOW, 5, screen) while (B1 EQ false) { Screen:Render() } }